home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_07_08 / v7n8038a.txt < prev    next >
Text File  |  1989-10-01  |  358b  |  13 lines

  1. *****Listing 1*****
  2.  
  3.  
  4. int fprintf(FILE *stream, const char *format, ...);<R>
  5. int printf(const char *format, ...);<R>
  6. int sprintf(char *dest, const char *format, ...);<R>
  7. in vfprintf(FILE *stream, const char *format, va_list ap);<R>
  8. int vprintf(const char *format, ...);<R>
  9. int vsprintf(char *dest, const char *format, ...);
  10.  
  11.  
  12. *******************
  13.